      if (0 and MModules->loaded('exits') and $outward and keys %{$obj->exits}) {
	my %exlist = map {$_, 1} keys %{$obj->exits};
	$picture = ($exlist{northwest} ? ' \\': '  ') .
		   ($exlist{north}     ? '|'  : ' ' ) .
		   ($exlist{northeast} ? '/ ' : '  ') . " \n".
		   ($exlist{west}      ? '--' : '  ') .
		   (
		     $exlist{up} ? ($exlist{down} ? '*' : '>')
				 : ($exlist{down} ? '<' : '+')
		   ) .
		   ($exlist{east}      ? '--' : '  ') . " \n".
		   ($exlist{southwest} ? ' /' : '  ') .
		   ($exlist{south}     ? '|'  : ' ' ) .
		   ($exlist{southeast} ? '\\ ': '  ') . " \n";
      }
   
   
           ($picture ? ['html:pre',{float=>'left'}, $picture] : ()),
